home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / X11 / Xft / Xft.h next >
Encoding:
C/C++ Source or Header  |  2006-04-12  |  12.4 KB  |  639 lines

  1. /*
  2.  *
  3.  * Copyright ┬⌐ 2000 Keith Packard, member of The XFree86 Project, Inc.
  4.  *
  5.  * Permission to use, copy, modify, distribute, and sell this software and its
  6.  * documentation for any purpose is hereby granted without fee, provided that
  7.  * the above copyright notice appear in all copies and that both that
  8.  * copyright notice and this permission notice appear in supporting
  9.  * documentation, and that the name of Keith Packard not be used in
  10.  * advertising or publicity pertaining to distribution of the software without
  11.  * specific, written prior permission.  Keith Packard makes no
  12.  * representations about the suitability of this software for any purpose.  It
  13.  * is provided "as is" without express or implied warranty.
  14.  *
  15.  * KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  16.  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
  17.  * EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  18.  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
  19.  * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  20.  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  21.  * PERFORMANCE OF THIS SOFTWARE.
  22.  */
  23.  
  24. #ifndef _XFT_H_
  25. #define _XFT_H_
  26.  
  27. /*
  28.   * Current Xft version number.  This same number
  29.   * must appear in the Xft configure.ac file. Yes,
  30.   * it'a a pain to synchronize version numbers like this.
  31.   */
  32.  
  33. #define XFT_MAJOR    2
  34. #define XFT_MINOR    1
  35. #define XFT_REVISION    6
  36. #define XFT_VERSION    ((XFT_MAJOR * 10000) + (XFT_MINOR * 100) + (XFT_REVISION))
  37. #define XftVersion    XFT_VERSION
  38.  
  39. #include <stdarg.h>
  40. #include <ft2build.h>
  41. #include FT_FREETYPE_H
  42. #include <fontconfig/fontconfig.h>
  43. #include <X11/extensions/Xrender.h>
  44.  
  45. #include <X11/Xfuncproto.h>
  46. /* #include <X11/Xosdefs.h>*/
  47.  
  48. #ifndef _XFT_NO_COMPAT_
  49. #include <X11/Xft/XftCompat.h>
  50. #endif
  51.  
  52. #define XFT_CORE        "core"
  53. #define XFT_RENDER        "render"
  54. #define XFT_XLFD        "xlfd"
  55. #define XFT_MAX_GLYPH_MEMORY    "maxglyphmemory"
  56. #define XFT_MAX_UNREF_FONTS    "maxunreffonts"
  57.  
  58. extern FT_Library    _XftFTlibrary;
  59.  
  60. typedef struct _XftFontInfo XftFontInfo;
  61.  
  62. typedef struct _XftFont {
  63.     int        ascent;
  64.     int        descent;
  65.     int        height;
  66.     int        max_advance_width;
  67.     FcCharSet    *charset;
  68.     FcPattern    *pattern;
  69. } XftFont;
  70.  
  71. typedef struct _XftDraw XftDraw;
  72.  
  73. typedef struct _XftColor {
  74.     unsigned long   pixel;
  75.     XRenderColor    color;
  76. } XftColor;
  77.  
  78. typedef struct _XftCharSpec {
  79.     FcChar32        ucs4;
  80.     short        x;
  81.     short        y;
  82. } XftCharSpec;
  83.  
  84. typedef struct _XftCharFontSpec {
  85.     XftFont        *font;
  86.     FcChar32        ucs4;
  87.     short        x;
  88.     short        y;
  89. } XftCharFontSpec;
  90.  
  91. typedef struct _XftGlyphSpec {
  92.     FT_UInt        glyph;
  93.     short        x;
  94.     short        y;
  95. } XftGlyphSpec;
  96.  
  97. typedef struct _XftGlyphFontSpec {
  98.     XftFont        *font;
  99.     FT_UInt        glyph;
  100.     short        x;
  101.     short        y;
  102. } XftGlyphFontSpec;
  103.  
  104. _XFUNCPROTOBEGIN
  105.  
  106.     
  107. /* xftcolor.c */
  108. Bool
  109. XftColorAllocName (Display  *dpy,
  110.            _Xconst Visual   *visual,
  111.            Colormap cmap,
  112.            _Xconst char        *name,
  113.            XftColor *result);
  114.  
  115. Bool
  116. XftColorAllocValue (Display        *dpy,
  117.             Visual        *visual,
  118.             Colormap        cmap,
  119.             _Xconst XRenderColor    *color,
  120.             XftColor        *result);
  121.  
  122. void
  123. XftColorFree (Display    *dpy,
  124.           Visual    *visual,
  125.           Colormap    cmap,
  126.           XftColor    *color);
  127.  
  128.  
  129. /* xftcore.c */
  130.  
  131. /* xftdir.c */
  132. FcBool
  133. XftDirScan (FcFontSet *set, _Xconst char *dir, FcBool force);
  134.  
  135. FcBool
  136. XftDirSave (FcFontSet *set, _Xconst char *dir);
  137.  
  138. /* xftdpy.c */
  139. Bool
  140. XftDefaultHasRender (Display *dpy);
  141.     
  142. Bool
  143. XftDefaultSet (Display *dpy, FcPattern *defaults);
  144.  
  145. void
  146. XftDefaultSubstitute (Display *dpy, int screen, FcPattern *pattern);
  147.     
  148. /* xftdraw.c */
  149.  
  150. XftDraw *
  151. XftDrawCreate (Display   *dpy,
  152.            Drawable  drawable,
  153.            Visual    *visual,
  154.            Colormap  colormap);
  155.  
  156. XftDraw *
  157. XftDrawCreateBitmap (Display  *dpy,
  158.              Pixmap   bitmap);
  159.  
  160. XftDraw *
  161. XftDrawCreateAlpha (Display *dpy, 
  162.             Pixmap  pixmap,
  163.             int        depth);
  164.  
  165. void
  166. XftDrawChange (XftDraw    *draw,
  167.            Drawable    drawable);
  168.  
  169. Display *
  170. XftDrawDisplay (XftDraw *draw);
  171.  
  172. Drawable
  173. XftDrawDrawable (XftDraw *draw);
  174.  
  175. Colormap
  176. XftDrawColormap (XftDraw *draw);
  177.  
  178. Visual *
  179. XftDrawVisual (XftDraw *draw);
  180.  
  181. void
  182. XftDrawDestroy (XftDraw    *draw);
  183.  
  184. Picture
  185. XftDrawPicture (XftDraw *draw);
  186.  
  187. Picture
  188. XftDrawSrcPicture (XftDraw *draw, _Xconst XftColor *color);
  189.  
  190. void
  191. XftDrawGlyphs (XftDraw        *draw,
  192.            _Xconst XftColor    *color,
  193.            XftFont        *pub,
  194.            int        x,
  195.            int        y,
  196.            _Xconst FT_UInt    *glyphs,
  197.            int        nglyphs);
  198.  
  199. void
  200. XftDrawString8 (XftDraw            *draw,
  201.         _Xconst XftColor    *color,
  202.         XftFont            *pub,
  203.         int            x, 
  204.         int            y,
  205.         _Xconst FcChar8        *string,
  206.         int            len);
  207.  
  208. void
  209. XftDrawString16 (XftDraw        *draw,
  210.          _Xconst XftColor   *color,
  211.          XftFont        *pub,
  212.          int            x,
  213.          int            y,
  214.          _Xconst FcChar16   *string,
  215.          int            len);
  216.  
  217. void
  218. XftDrawString32 (XftDraw        *draw,
  219.          _Xconst XftColor   *color,
  220.          XftFont        *pub,
  221.          int            x,
  222.          int            y,
  223.          _Xconst FcChar32   *string,
  224.          int            len);
  225.  
  226. void
  227. XftDrawStringUtf8 (XftDraw        *draw,
  228.            _Xconst XftColor *color,
  229.            XftFont        *pub,
  230.            int            x, 
  231.            int            y,
  232.            _Xconst FcChar8  *string,
  233.            int            len);
  234.  
  235. void
  236. XftDrawStringUtf16 (XftDraw        *draw,
  237.             _Xconst XftColor    *color,
  238.             XftFont        *pub,
  239.             int            x,
  240.             int            y,
  241.             _Xconst FcChar8    *string,
  242.             FcEndian        endian,
  243.             int            len);
  244.  
  245. void
  246. XftDrawCharSpec (XftDraw        *draw,
  247.          _Xconst XftColor    *color,
  248.          XftFont        *pub,
  249.          _Xconst XftCharSpec    *chars,
  250.          int            len);
  251.  
  252. void
  253. XftDrawCharFontSpec (XftDraw            *draw,
  254.              _Xconst XftColor        *color,
  255.              _Xconst XftCharFontSpec    *chars,
  256.              int            len);
  257.  
  258. void
  259. XftDrawGlyphSpec (XftDraw        *draw,
  260.           _Xconst XftColor    *color,
  261.           XftFont        *pub,
  262.           _Xconst XftGlyphSpec    *glyphs,
  263.           int            len);
  264.  
  265. void
  266. XftDrawGlyphFontSpec (XftDraw            *draw,
  267.               _Xconst XftColor        *color,
  268.               _Xconst XftGlyphFontSpec    *glyphs,
  269.               int            len);
  270.  
  271. void
  272. XftDrawRect (XftDraw        *draw,
  273.          _Xconst XftColor    *color,
  274.          int        x, 
  275.          int        y,
  276.          unsigned int    width,
  277.          unsigned int    height);
  278.  
  279.  
  280. Bool
  281. XftDrawSetClip (XftDraw        *draw,
  282.         Region        r);
  283.  
  284.  
  285. Bool
  286. XftDrawSetClipRectangles (XftDraw        *draw,
  287.               int            xOrigin,
  288.               int            yOrigin,
  289.               _Xconst XRectangle    *rects,
  290.               int            n);
  291.  
  292. void
  293. XftDrawSetSubwindowMode (XftDraw    *draw,
  294.              int        mode);
  295.  
  296. /* xftextent.c */
  297.  
  298. void
  299. XftGlyphExtents (Display        *dpy,
  300.          XftFont        *pub,
  301.          _Xconst FT_UInt    *glyphs,
  302.          int            nglyphs,
  303.          XGlyphInfo        *extents);
  304.  
  305. void
  306. XftTextExtents8 (Display        *dpy,
  307.          XftFont        *pub,
  308.          _Xconst FcChar8    *string, 
  309.          int            len,
  310.          XGlyphInfo        *extents);
  311.  
  312. void
  313. XftTextExtents16 (Display        *dpy,
  314.           XftFont        *pub,
  315.           _Xconst FcChar16  *string, 
  316.           int            len,
  317.           XGlyphInfo        *extents);
  318.  
  319. void
  320. XftTextExtents32 (Display        *dpy,
  321.           XftFont        *pub,
  322.           _Xconst FcChar32  *string, 
  323.           int            len,
  324.           XGlyphInfo        *extents);
  325.     
  326. void
  327. XftTextExtentsUtf8 (Display        *dpy,
  328.             XftFont        *pub,
  329.             _Xconst FcChar8 *string, 
  330.             int            len,
  331.             XGlyphInfo        *extents);
  332.  
  333. void
  334. XftTextExtentsUtf16 (Display        *dpy,
  335.              XftFont        *pub,
  336.              _Xconst FcChar8    *string, 
  337.              FcEndian        endian,
  338.              int        len,
  339.              XGlyphInfo        *extents);
  340.  
  341. /* xftfont.c */
  342. FcPattern *
  343. XftFontMatch (Display        *dpy,
  344.           int        screen,
  345.           _Xconst FcPattern *pattern,
  346.           FcResult        *result);
  347.  
  348. XftFont *
  349. XftFontOpen (Display *dpy, int screen, ...);
  350.  
  351. XftFont *
  352. XftFontOpenName (Display *dpy, int screen, _Xconst char *name);
  353.  
  354. XftFont *
  355. XftFontOpenXlfd (Display *dpy, int screen, _Xconst char *xlfd);
  356.  
  357. /* xftfreetype.c */
  358.  
  359. FT_Face
  360. XftLockFace (XftFont *pub);
  361.  
  362. void
  363. XftUnlockFace (XftFont *pub);
  364.  
  365. XftFontInfo *
  366. XftFontInfoCreate (Display *dpy, _Xconst FcPattern *pattern);
  367.  
  368. void
  369. XftFontInfoDestroy (Display *dpy, XftFontInfo *fi);
  370.  
  371. FcChar32
  372. XftFontInfoHash (_Xconst XftFontInfo *fi);
  373.  
  374. FcBool
  375. XftFontInfoEqual (_Xconst XftFontInfo *a, _Xconst XftFontInfo *b);
  376.  
  377. XftFont *
  378. XftFontOpenInfo (Display    *dpy, 
  379.          FcPattern    *pattern, 
  380.          XftFontInfo    *fi);
  381.  
  382. XftFont *
  383. XftFontOpenPattern (Display *dpy, FcPattern *pattern);
  384.  
  385. XftFont *
  386. XftFontCopy (Display *dpy, XftFont *pub);
  387.  
  388. void
  389. XftFontClose (Display *dpy, XftFont *pub);
  390.  
  391. FcBool
  392. XftInitFtLibrary(void);
  393.  
  394. /* xftglyphs.c */
  395. void
  396. XftFontLoadGlyphs (Display        *dpy,
  397.            XftFont        *pub,
  398.            FcBool        need_bitmaps,
  399.            _Xconst FT_UInt  *glyphs,
  400.            int            nglyph);
  401.  
  402. void
  403. XftFontUnloadGlyphs (Display        *dpy,
  404.              XftFont        *pub,
  405.              _Xconst FT_UInt    *glyphs,
  406.              int        nglyph);
  407.  
  408. #define XFT_NMISSING        256
  409.  
  410. FcBool
  411. XftFontCheckGlyph (Display  *dpy,
  412.            XftFont  *pub,
  413.            FcBool   need_bitmaps,
  414.            FT_UInt  glyph,
  415.            FT_UInt  *missing,
  416.            int        *nmissing);
  417.  
  418. FcBool
  419. XftCharExists (Display        *dpy,
  420.            XftFont        *pub,
  421.            FcChar32    ucs4);
  422.     
  423. FT_UInt
  424. XftCharIndex (Display        *dpy, 
  425.           XftFont        *pub,
  426.           FcChar32        ucs4);
  427.     
  428. /* xftgram.y */
  429.  
  430. /* xftinit.c */
  431. FcBool
  432. XftInit (_Xconst char *config);
  433.  
  434. int
  435. XftGetVersion (void);
  436.  
  437. /* xftlex.l */
  438.  
  439. /* xftlist.c */
  440.  
  441. FcFontSet *
  442. XftListFonts (Display    *dpy,
  443.           int    screen,
  444.           ...);
  445.  
  446. /* xftmatch.c */
  447.  
  448. /* xftmatrix.c */
  449.  
  450. /* xftname.c */
  451. FcPattern 
  452. *XftNameParse (_Xconst char *name);
  453.  
  454. /* xftpat.c */
  455.  
  456. /* xftrender.c */
  457. void
  458. XftGlyphRender (Display        *dpy,
  459.         int        op,
  460.         Picture        src,
  461.         XftFont        *pub,
  462.         Picture        dst,
  463.         int        srcx,
  464.         int        srcy,
  465.         int        x,
  466.         int        y,
  467.         _Xconst FT_UInt    *glyphs,
  468.         int        nglyphs);
  469.  
  470. void
  471. XftGlyphSpecRender (Display            *dpy,
  472.             int                op,
  473.             Picture            src,
  474.             XftFont            *pub,
  475.             Picture            dst,
  476.             int                srcx,
  477.             int                srcy,
  478.             _Xconst XftGlyphSpec    *glyphs,
  479.             int                nglyphs);
  480.  
  481. void
  482. XftCharSpecRender (Display        *dpy,
  483.            int            op,
  484.            Picture        src,
  485.            XftFont        *pub,
  486.            Picture        dst,
  487.            int            srcx, 
  488.            int            srcy,
  489.            _Xconst XftCharSpec    *chars,
  490.            int            len);
  491.  
  492. void
  493. XftGlyphFontSpecRender (Display                *dpy,
  494.             int                op,
  495.             Picture                src,
  496.             Picture                dst,
  497.             int                srcx,
  498.             int                srcy,
  499.             _Xconst XftGlyphFontSpec    *glyphs,
  500.             int                nglyphs);
  501.  
  502. void
  503. XftCharFontSpecRender (Display            *dpy,
  504.                int            op,
  505.                Picture            src,
  506.                Picture            dst,
  507.                int            srcx,
  508.                int            srcy,
  509.                _Xconst XftCharFontSpec    *chars,
  510.                int            len);
  511.  
  512. void
  513. XftTextRender8 (Display        *dpy,
  514.         int        op,
  515.         Picture        src,
  516.         XftFont        *pub,
  517.         Picture        dst,
  518.         int        srcx,
  519.         int        srcy,
  520.         int        x,
  521.         int        y,
  522.         _Xconst FcChar8    *string,
  523.         int        len);
  524.  
  525. void
  526. XftTextRender16 (Display        *dpy,
  527.          int            op,
  528.          Picture        src,
  529.          XftFont        *pub,
  530.          Picture        dst,
  531.          int            srcx,
  532.          int            srcy,
  533.          int            x,
  534.          int            y,
  535.          _Xconst FcChar16   *string,
  536.          int            len);
  537.  
  538. void
  539. XftTextRender16BE (Display        *dpy,
  540.            int            op,
  541.            Picture        src,
  542.            XftFont        *pub,
  543.            Picture        dst,
  544.            int            srcx,
  545.            int            srcy,
  546.            int            x,
  547.            int            y,
  548.            _Xconst FcChar8  *string,
  549.            int            len);
  550.  
  551. void
  552. XftTextRender16LE (Display        *dpy,
  553.            int            op,
  554.            Picture        src,
  555.            XftFont        *pub,
  556.            Picture        dst,
  557.            int            srcx,
  558.            int            srcy,
  559.            int            x,
  560.            int            y,
  561.            _Xconst FcChar8  *string,
  562.            int            len);
  563.  
  564. void
  565. XftTextRender32 (Display        *dpy,
  566.          int            op,
  567.          Picture        src,
  568.          XftFont        *pub,
  569.          Picture        dst,
  570.          int            srcx,
  571.          int            srcy,
  572.          int            x,
  573.          int            y,
  574.          _Xconst FcChar32   *string,
  575.          int            len);
  576.  
  577. void
  578. XftTextRender32BE (Display        *dpy,
  579.            int            op,
  580.            Picture        src,
  581.            XftFont        *pub,
  582.            Picture        dst,
  583.            int            srcx,
  584.            int            srcy,
  585.            int            x,
  586.            int            y,
  587.            _Xconst FcChar8  *string,
  588.            int            len);
  589.  
  590. void
  591. XftTextRender32LE (Display        *dpy,
  592.            int            op,
  593.            Picture        src,
  594.            XftFont        *pub,
  595.            Picture        dst,
  596.            int            srcx,
  597.            int            srcy,
  598.            int            x,
  599.            int            y,
  600.            _Xconst FcChar8  *string,
  601.            int            len);
  602.  
  603. void
  604. XftTextRenderUtf8 (Display        *dpy,
  605.            int            op,
  606.            Picture        src,
  607.            XftFont        *pub,
  608.            Picture        dst,
  609.            int            srcx,
  610.            int            srcy,
  611.            int            x,
  612.            int            y,
  613.            _Xconst FcChar8  *string,
  614.            int            len);
  615.  
  616. void
  617. XftTextRenderUtf16 (Display        *dpy,
  618.             int            op,
  619.             Picture        src,
  620.             XftFont        *pub,
  621.             Picture        dst,
  622.             int            srcx,
  623.             int            srcy,
  624.             int            x,
  625.             int            y,
  626.             _Xconst FcChar8 *string,
  627.             FcEndian        endian,
  628.             int            len);
  629.  
  630. /* xftstr.c */
  631.  
  632. /* xftxlfd.c */
  633. FcPattern *
  634. XftXlfdParse (_Xconst char *xlfd_orig, Bool ignore_scalable, Bool complete);
  635.     
  636. _XFUNCPROTOEND
  637.  
  638. #endif /* _XFT_H_ */
  639.